alter table "Appointment" add column "LocationId" integer
						
						alter table "Patient" add column "LocationId" integer
						
						alter table "Appointment" add CONSTRAINT "FK_Appointment_LocationId" FOREIGN KEY ("LocationId")
        REFERENCES public."Location" ("LocationId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION
						
						alter table "Patient" add  CONSTRAINT "FK_Patient_LocationId" FOREIGN KEY ("LocationId")
        REFERENCES public."Location" ("LocationId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION
							